home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 2.iso / dist / fw_gimp.idb / usr / freeware / include / libgimp / gimpfileselection.h.z / gimpfileselection.h
C/C++ Source or Header  |  2002-07-08  |  3KB  |  88 lines

  1. /* LIBGIMP - The GIMP Library
  2.  * Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball                
  3.  *
  4.  * gimpfileselection.h
  5.  * Copyright (C) 1999 Michael Natterer <mitch@gimp.org>
  6.  *
  7.  * This library is free software; you can redistribute it and/or
  8.  * modify it under the terms of the GNU Lesser General Public
  9.  * License as published by the Free Software Foundation; either
  10.  * version 2 of the License, or (at your option) any later version.
  11.  * 
  12.  * This library is distributed in the hope that it will be useful, 
  13.  * but WITHOUT ANY WARRANTY; without even the implied warranty of 
  14.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
  15.  * Lesser General Public License for more details.
  16.  *
  17.  * You should have received a copy of the GNU Lesser General Public
  18.  * License along with this library; if not, write to the
  19.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  20.  * Boston, MA 02111-1307, USA.
  21.  */
  22.  
  23. #ifndef __GIMP_FILE_SELECTION_H__
  24. #define __GIMP_FILE_SELECTION_H__
  25.  
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif /* __cplusplus */
  29.  
  30. /* For information look into the C source or the html documentation */
  31.  
  32.  
  33. #define GIMP_TYPE_FILE_SELECTION            (gimp_file_selection_get_type ())
  34. #define GIMP_FILE_SELECTION(obj)            (GTK_CHECK_CAST ((obj), GIMP_TYPE_FILE_SELECTION, GimpFileSelection))
  35. #define GIMP_FILE_SELECTION_CLASS(klass)    (GTK_CHECK_CLASS_CAST ((klass), GIMP_TYPE_FILE_SELECTION, GimpFileSelectionClass))
  36. #define GIMP_IS_FILE_SELECTION(obj)         (GTK_CHECK_TYPE (obj, GIMP_TYPE_FILE_SELECTION))
  37. #define GIMP_IS_FILE_SELECTION_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_FILE_SELECTION))
  38.  
  39. typedef struct _GimpFileSelection       GimpFileSelection;
  40. typedef struct _GimpFileSelectionClass  GimpFileSelectionClass;
  41.  
  42. struct _GimpFileSelection
  43. {
  44.   GtkHBox    hbox;
  45.  
  46.   GtkWidget *file_exists;
  47.   GtkWidget *entry;
  48.   GtkWidget *browse_button;
  49.  
  50.   GtkWidget *file_selection;
  51.  
  52.   GdkPixmap *yes_pixmap;
  53.   GdkBitmap *yes_mask;
  54.   GdkPixmap *no_pixmap;
  55.   GdkBitmap *no_mask;
  56.  
  57.   gchar     *title;
  58.   gboolean   dir_only;
  59.   gboolean   check_valid;
  60. };
  61.  
  62. struct _GimpFileSelectionClass
  63. {
  64.   GtkHBoxClass parent_class;
  65.  
  66.   void (* filename_changed) (GimpFileSelection *gfs);
  67. };
  68.  
  69.  
  70. GtkType     gimp_file_selection_get_type    (void);
  71.  
  72. GtkWidget*  gimp_file_selection_new         (const gchar        *title,
  73.                          const gchar        *filename,
  74.                          gboolean            dir_only,
  75.                          gboolean            check_valid);
  76.  
  77. gchar*      gimp_file_selection_get_filename (GimpFileSelection *gfs);
  78.  
  79. void        gimp_file_selection_set_filename (GimpFileSelection *gfs,
  80.                           const gchar       *filename);
  81.  
  82.  
  83. #ifdef __cplusplus
  84. }
  85. #endif /* __cplusplus */
  86.  
  87. #endif /* __GIMP_FILE_SELECTION_H__ */
  88.